2  Python vs. R

This is sample Python code directly evaluated by Quarto.

Code
# python code
a = 1 
a
1

And here is the corresponding R code.

Code
# R code
my_var <- 2
my_var
[1] 2